home *** CD-ROM | disk | FTP | other *** search
/ HAKERIS 11 / HAKERIS 11.ISO / soft / development / Macromedia RoboHelp X5 / RoboHelpOffice.exe / Data1.cab / _FDA125951EC842B4BB4208DB1C050858 < prev    next >
Encoding:
Text File  |  2003-08-04  |  1.9 KB  |  76 lines

  1. #if !defined(AFX_PARAMETERDIALOG_H__CC8261E5_279D_4B25_B074_7E74C3EEE0E1__INCLUDED_)
  2. #define AFX_PARAMETERDIALOG_H__CC8261E5_279D_4B25_B074_7E74C3EEE0E1__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // ParameterDialog.h : header file
  8. //
  9.  
  10. #include "resource.h"
  11.  
  12. #include "imgbutton.h"
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CParameterDialog dialog
  16.  
  17. class CParameterDialog : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CParameterDialog(LPCTSTR a_pszParamIn, LPCTSTR a_pszTitle, CWnd* pParent = NULL);   // standard constructor
  22.  
  23. public:
  24.     CString GetParamOut();
  25. public:
  26.  
  27. // Dialog Data
  28.     //{{AFX_DATA(CParameterDialog)
  29.     enum { IDD = IDD_DIALOG_PARAMETERS };
  30.     CButton    m_ctlBrowse;
  31.     CImgButton    m_ctlHelpButton;
  32.     int        m_nNoneCssMode;
  33.     CString    m_strCustCssXslFile;
  34.     //}}AFX_DATA
  35.  
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CParameterDialog)
  40.     public:
  41.     virtual void WinHelp(DWORD dwData, UINT nCmd = HELP_CONTEXT);
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CParameterDialog)
  51.     virtual void OnOK();
  52.     virtual void OnCancel();
  53.     virtual BOOL OnInitDialog();
  54.     afx_msg void OnBtBrowse();
  55.     afx_msg void OnRadioMode();
  56.     afx_msg void OnHelp();
  57.     afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  58.     afx_msg void OnKillfocusEdCustCssxsl();
  59.     afx_msg void OnChangeEdCustCssxsl();
  60.     //}}AFX_MSG
  61.     DECLARE_MESSAGE_MAP()
  62.  
  63. protected:
  64.     BOOL    CheckValid(BOOL a_bPrompt);
  65.  
  66. protected:
  67.     CString m_strTitle;
  68.     CString m_strParamIn;
  69.  
  70. };
  71.  
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74.  
  75. #endif // !defined(AFX_PARAMETERDIALOG_H__CC8261E5_279D_4B25_B074_7E74C3EEE0E1__INCLUDED_)
  76.